home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / tu32.zip / TU32DEMO / INDXPROJ / INDXPROJ.DPR < prev   
Text File  |  1995-08-01  |  200b  |  13 lines

  1. program Indxproj;
  2.  
  3. uses
  4.   Forms,
  5.   Indxmain in 'INDXMAIN.PAS' {FormIndxProjMain};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TFormIndxProjMain, FormIndxProjMain);
  11.   Application.Run;
  12. end.
  13.